home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Freelog 121
/
FreelogMagazineJuilletAout2014-No121.iso
/
Outils
/
Adobe-Air
/
adobe-air_13.exe
/
[0]
/
setup.swf
/
scripts
/
mx
/
events
/
ChildExistenceChangedEvent.as
next >
Wrap
Text File
|
2014-03-27
|
995b
|
35 lines
package mx.events
{
import flash.display.DisplayObject;
import flash.events.Event;
import mx.core.mx_internal;
use namespace mx_internal;
public class ChildExistenceChangedEvent extends Event
{
public static const CHILD_REMOVE:String = "childRemove";
mx_internal static const VERSION:String = "3.0.0.0";
public static const OVERLAY_CREATED:String = "overlayCreated";
public static const CHILD_ADD:String = "childAdd";
public var relatedObject:DisplayObject;
public function ChildExistenceChangedEvent(param1:String, param2:Boolean = false, param3:Boolean = false, param4:DisplayObject = null)
{
super(param1,param2,param3);
this.relatedObject = param4;
}
override public function clone() : Event
{
return new ChildExistenceChangedEvent(type,bubbles,cancelable,relatedObject);
}
}
}